mehdee81 3 گزارش دادن ارسال شده در دی 99 سلام من سایتم همه جاش درست شده مثلا قسمت پروفایل کاربری و کاربران و مقاله ها ولی وقتی میخوام یکی از مقاله هارو به نمایش بزارم با دکمه (reed more) درست به table وصل نمیشه. router و لینکش هم درست کار میکنه. مشکل از کجاست؟ App\Models\Article {#321 ▼ #fillable: array:3 [▶] #connection: null #table: null #primaryKey: "id" #keyType: "int" +incrementing: true #with: [] #withCount: [] #perPage: 15 +exists: false +wasRecentlyCreated: false #attributes: [] #original: [] #changes: [] #casts: [] #classCastCache: [] #dates: [] #dateFormat: null #appends: [] #dispatchesEvents: [] #observables: [] #relations: [] #touches: [] +timestamps: true #hidden: [] #visible: [] #guarded: array:1 [▶] } نقل قول Share this post Link to post Share on other sites
saber 143 گزارش دادن ارسال شده در دی 99 برای دریافت یه مقاله چه کدی نوشتین؟ و چطوری نمایش دادین؟ 1 نقل قول Share this post Link to post Share on other sites
mehdee81 3 گزارش دادن ارسال شده در دی 99 برای دریافت نام کسی که مقاله رو نوشته این کد رو نوشتم ولی نام نویسنده رو نمایش نمیده <div class="container"> <div class="d-flex justify-content-center"> name: {{ $article->name }} </div> </div> این هم کد کنترولرمه public function show(article $article) { return view('front.article', compact( 'article')); } این هم روترم Route::get('/show/{Article}', 'App\Http\Controllers\Articlecontroller@show')->name('show'); این هم لینک صفحه نمایش مقاله <a href="{{ route('show', $article->id) }}" class="btn btn-primary">..!Fin it more</a> کدوم مشکل داره؟ نقل قول Share this post Link to post Share on other sites
mehdee81 3 گزارش دادن ارسال شده در دی 99 دریافت مقاله درست کار میکنه چون بعد از ساخت مقاله توسط کاربر هم تو دیتابیس نمایش میده و هم داخل پنل ادمین نقل قول Share this post Link to post Share on other sites
saber 143 گزارش دادن ارسال شده در دی 99 برای دریافت نام نویسنده رابطه مربوط به article و user رو ایجاد کردید؟ باید روابط این دو تا مادل رو ایجاد کنید بعد برای دریافت نام کاربر نویسنده به شکل زیر فراخوانی کنید $article->user->name نقل قول Share this post Link to post Share on other sites