اذهب إلى المحتوى

ايمن ميلاد

الأعضاء
  • المساهمات

    247
  • تاريخ الانضمام

  • تاريخ آخر زيارة

  • عدد الأيام التي تصدر بها

    1

كل منشورات العضو ايمن ميلاد

  1. لماذا لا يتم عرض صفحة تعديل بيانات لكي ادخل ما اريد تعديله واضغط حفظ Route::get('/student', [StudentController::class, 'index'])->name('/student'); Route::get('/student/create', [StudentController::class, 'create'])->name('/student/create'); Route::post('/student/create', [StudentController::class, 'store'])->name('/student/create'); Route::get('/students/{student}/edit', [StudentController::class, 'edit'])->name('students.edit'); صفحة edit @extends('layouts.master'); @section('title') ادخال بيانات @endsection @section('title_page1') الطلبة @endsection @section('title_page2') ادخال بيانات الطلبة @endsection @section('content') <style> label, button { margin-top: 1cm; } h5, button { margin-right: 1cm } label { text-align: right; display: inline-block; width: 140px; } </style> <form action="{{ route('/student/update', $student->id) }}" class="form-inline" method="POST"> @csrf @method('PUT') <div class="row"> <div class="col-sm-4 tight-gutter"> <label>اسم الطالب </label> <input type="text" class="form-control" name="name_std" style="width: 100%;" placeholder=" اسم الطالب" value="{{ $student->name_std }}" </div> <div class="col-sm-4 tight-gutter"> <label>رقم القيد</label> <input type="text" class="form-control" name="num_std" style="width: 100%;" placeholder="رقم القيد" value="{{ $student->num_std }}"> </div> <div class="col-sm-4 tight-gutter"> <label> البريد الالكتروني</label> <input type="email" class="form-control" name="email_std" style="width: 100%;" placeholder="البريد الالكتروني " value="{{ $student->email_std }}"> </div> <div class="col-sm-4 tight-gutter"> <label> تاريخ الميلاد</label> <input type="date" class="form-control" name="date_student" style="width: 100%;" value="{{ $student->date_student }}"> </div> <div class="col-sm-4 tight-gutter"> <label> العنوان</label> <input type="text" class="form-control" name="adress_std" style="width: 100%;" placeholder=" العنوان" value="{{ $student->adress_std }}"> </div> <div class="col-sm-4 tight-gutter"> <label>رقم الهاتف</label> <input type="text" class="form-control" name="phone" style="width: 100%;" placeholder="رقم الهاتف" value="{{ $student->phone }}"> </div> </div> <button type="submit" class="btn btn-primary">تعديل</button> </form> @endsection @section('scripts') <script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"> </script> <script src="https://cdn.jsdelivr.net/npm/popper.js@1.12.9/dist/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"> </script> <script src="https://cdn.jsdelivr.net/npm/bootstrap@4.0.0/dist/js/bootstrap.min.js" integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl" crossorigin="anonymous"> </script> @endsection عندما اضغط علي زر تعديل هكذا يظهر
  2. السلام عليكم لدي صفحة ادخال بيانات لماذا عندما اخزن بيانات يظهر في صف null كل حقول صفحة ادخال بيانات @extends('layouts.master'); @section('title') ادخال بيانات @endsection @section('title_page1') الطلبة @endsection @section('title_page2') ادخال بيانات الطلبة @endsection @section('content') <style> label, button { margin-top: 1cm; } h5, button { margin-right: 1cm } label { text-align: right; display: inline-block; width: 140px; } </style> <form action="{{ route('/student/create') }}" class="form-inline" method="POST"> @csrf @method('post') <h5>ادخال بيانات الطلبة </h5> <div class="row"> <div class="col-sm-4 tight-gutter"> <label>اسم الطالب </label> <input type="text" class="form-control" style="width: 100%;" placeholder=" اسم الطالب"> </div> <div class="col-sm-4 tight-gutter"> <label>رقم القيد</label> <input type="text" class="form-control" style="width: 100%;" placeholder="رقم القيد"> </div> <div class="col-sm-4 tight-gutter"> <label> البريد الالكتروني</label> <input type="email" class="form-control" style="width: 100%;" placeholder="البريد الالكتروني "> </div> <div class="col-sm-4 tight-gutter"> <label> تاريخ الميلاد</label> <input type="date" class="form-control" style="width: 100%;"> </div> <div class="col-sm-4 tight-gutter"> <label> العنوان</label> <input type="text" class="form-control" style="width: 100%;" placeholder=" العنوان"> </div> <div class="col-sm-4 tight-gutter"> <label>رقم الهاتف</label> <input type="text" class="form-control" style="width: 100%;" placeholder="رقم الهاتف"> </div> </div> <button type="submit" class="btn btn-primary">حفظ</button> </form> @endsection @section('scripts') <script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"> </script> <script src="https://cdn.jsdelivr.net/npm/popper.js@1.12.9/dist/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"> </script> <script src="https://cdn.jsdelivr.net/npm/bootstrap@4.0.0/dist/js/bootstrap.min.js" integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl" crossorigin="anonymous"> </script> @endsection <?php namespace App\Http\Controllers; use App\Models\student; use Illuminate\Http\Request; class StudentController extends Controller { /** * Display a listing of the resource. */ public function create() { return view('student.create'); } public function store(Request $request) { $student = new student; $student->name_std = $request->input('name_std'); $student->num_std = $request->input('num_std'); $student->email_std = $request->input('email_std'); $student->date_student = $request->input('date_student'); $student->adress_std = $request->input('adress_std'); $student->phone = $request->input('phone'); $student->save(); return redirect()->back()->with('success', 'تم حفظ البيانات بنجاح!'); } public function index() { // } /** * Show the form for creating a new resource. */ /** * Store a newly created resource in storage. */ /** * Display the specified resource. */ public function show($id) { // } /** * Show the form for editing the specified resource. */ public function edit($id) { // } /** * Update the specified resource in storage. */ public function update(Request $request, student $student, $id) { // } /** * Remove the specified resource from storage. */ public function destroy(student $student, $id) { // } } <?php use Illuminate\Support\Facades\Route; use App\Http\Controllers\StudentController; use Illuminate\Routing\Route as RoutingRoute; Route::get('/student/create', [StudentController::class, 'create'])->name('/student/create'); Route::post('/student/create', [StudentController::class, 'store'])->name('/student/create'); <?php namespace App\Models; use Illuminate\Database\Eloquent\Factories\HasFactory; use Illuminate\Database\Eloquent\Model; class student extends Model { use HasFactory; protected $fillable = [ 'name_std', 'num_std', 'email_std', 'date_student', 'adress_std', 'phone', ]; }
  3. ممكن تعديل علي تنسيق صفحة بحيث يصبح في كل صف 3 حقول ادخال و3 صف بعده @extends('layouts.master'); @section('title') ادخال بيانات @endsection @section('title_page1') الطلبة @endsection @section('title_page2') ادخال بيانات الطلبة @endsection @section('content') <form action="{{ route('/student/create') }}" class="form-inline" method="POST"> @csrf @method('post') <div class="row"> <div class="col-sm-4 tight-gutter"> <label>اسم الطالب </label> <input type="text" class="form-control" placeholder=" اسم الطالب"> </div> <div class="col-sm-4 tight-gutter"> <label>رقم القيد</label> <input type="text" class="form-control" placeholder="رقم القيد"> </div> <div class="col-sm-4 tight-gutter"> <label> البريد الالكتروني</label> <input type="email" class="form-control" placeholder="البريد الالكتروني "> </div> <div class="col-sm-4 tight-gutter"> <label> تاريخ الميلاد</label> <input type="date" class="form-control"> </div> <div class="col-sm-4 tight-gutter"> <label> العنوان</label> <input type="text" class="form-control" placeholder=" العنوان"> </div> <div class="col-sm-4 tight-gutter"> <label>رقم الهاتف</label> <input type="text" class="form-control" placeholder="رقم الهاتف"> </div> </div> <button type="submit" class="btn btn-primary">حفظ</button> </form> <style> .form-control { font-size: 16px; /* Increase the font size */ padding: 10px; /* Increase the padding */ height: auto; /* Adjust the height as needed */ } .tight-gutter { padding: 0 2px; } </style> @endsection @section('scripts') <script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"> </script> <script src="https://cdn.jsdelivr.net/npm/popper.js@1.12.9/dist/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"> </script> <script src="https://cdn.jsdelivr.net/npm/bootstrap@4.0.0/dist/js/bootstrap.min.js" integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl" crossorigin="anonymous"> </script> @endsection
  4. هذا ملف main.sidebar <!-- Main Sidebar Container --> <aside class="main-sidebar sidebar-dark-primary elevation-4"> <!-- Brand Logo --> <a href="index3.html" class="brand-link"> <img src="{{asset('assets/img/AdminLTELogo.png')}}" alt="AdminLTE Logo" class="brand-image img-circle elevation-3" style="opacity: .8"> <span class="brand-text font-weight-light">AdminLTE 3</span> </a> <div class="sidebar"> <!-- Sidebar user panel (optional) --> <div class="user-panel mt-3 pb-3 mb-3 d-flex"> <div class="image"> <img src="{{asset('assets/img/user2-160x160.jpg')}}" class="img-circle elevation-2" alt="User Image"> </div> <div class="info"> <a href="#" class="d-block">Alexander Pierce</a> </div> </div> <!-- Sidebar Menu --> <nav class="mt-2"> <ul class="nav nav-pills nav-sidebar flex-column" data-widget="treeview" role="menu" data-accordion="false"> <!-- Add icons to the links using the .nav-icon class with font-awesome or any other icon font library --> {{-- <li class="nav-item has-treeview menu-open"> <a href="#" class="nav-link active"> <i class="nav-icon fas fa-tachometer-alt"></i> <p> الرئيسية <i class="right fas fa-angle-left"></i> </p> </a> </li> --}} <li class="nav-item has-treeview "> <a href="{{route('/student/create')}}" class="nav-link "> <i class=" "></i> <p> الطلبة <i class=""></i> </p> </a> </li> </nav> <!-- /.sidebar-menu --> </div> </aside>
  5. السلام عليكم لدي مجلد اسمه student موجود داخل مجلد views مجلد student به ملف create.blade.php لماذا عندما ازور رابط يقول لي خطا @extends('layouts.master'); @section('title') ادخال بيانات @endsection @section('title_page1') الطلبة @endsection @section('title_page2') ادخال بيانات الطلبة @endsection @section('content') <form action="/student/create" class="form-inline" method="POST"> @csrf <div class="row"> <div class="col-2"> <label>اسم الطالب </label> <input type="text" class="form-control" placeholder=" اسم الطالب"> <label>رقم القيد</label> <input type="text" class="form-control" placeholder="رقم القيد"> </div> <div class="col-2"> <label> البريد الالكتروني</label> <input type="email" class="form-control" placeholder="البريد الالكتروني "> <label> تاريخ الميلاد</label> <input type="date" class="form-control"> </div> <div class="col-2"> <label> العنوان</label> <input type="text" class="form-control" placeholder=" العنوان"> <label>رقم الهاتف</label> <input type="text" class="form-control" placeholder="رقم الهاتف"> </div> </div> <button type="submit" class="btn btn-primary">حفظ</button> </form> <style> .form-control { font-size: 16px; /* Increase the font size */ padding: 10px; /* Increase the padding */ height: auto; /* Adjust the height as needed */ } </style> @endsection @section('scripts') <script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"> </script> <script src="https://cdn.jsdelivr.net/npm/popper.js@1.12.9/dist/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"> </script> <script src="https://cdn.jsdelivr.net/npm/bootstrap@4.0.0/dist/js/bootstrap.min.js" integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl" crossorigin="anonymous"> </script> @endsection وهادي ملفات web.php <?php use Illuminate\Support\Facades\Route; use App\Http\Controllers\StudentController; use Illuminate\Routing\Route as RoutingRoute; Route::get('/student/create', [StudentController::class, 'create']); Route::post('/student/create', [StudentController::class, 'store']); وهادي ملف controall <?php namespace App\Http\Controllers; use App\Models\student; use Illuminate\Http\Request; class StudentController extends Controller { /** * Display a listing of the resource. */ public function create() { return view('student.create'); } public function store(Request $request) { dd('ok ok ok'); } public function index() { // } /** * Show the form for creating a new resource. */ /** * Store a newly created resource in storage. */ /** * Display the specified resource. */ public function show($id) { // } /** * Show the form for editing the specified resource. */ public function edit($id) { // } /** * Update the specified resource in storage. */ public function update(Request $request, student $student, $id) { // } /** * Remove the specified resource from storage. */ public function destroy(student $student, $id) { // } } قمت بتغير نوع action <form action="{{ route('student.create') }}" class="form-inline" method="POST">
  6. السلام عليكم ورحمة الله وبركاته متي استخدم جملة foreach ومتي لا استخدامها
  7. كيف افعل دلك باستخدام لارافيل
  8. السلام عليكم لدي لوحة تحكم تالية كم موضح في صورة اريد عندما اضغط علي كلمة الطلبة يفتح لي صفحة يعرض فيه بيانات الطلبه وكذلك به زر اضافة طلبة يذهب لصفحة اضافة طلبة ممكن شخص يساعدنا في موضوع
  9. بارك الله فيك أخي مصطفي ومحمد عاطف شهادة لله ماقصرتوا في كل سؤال اطرحه جزاكم الله كل خير
  10. بارك الله فيك أخي محمد عاطف لكن لماذا قرص c مساحته 256 قيقا يظهر 238 قيقا مساحة القرص
  11. نعم بجوار قرص سي اخي محمد عاطف وعندما اضغط كليك يمين علي قرص سي يظهر خيار زيادة مساحة تخزين enabled
  12. اخي محمد قمت بحذف قرص d الان عندما اقف فوق وحدة تخزين سي اريد توسيع وحدة تخزين تتظهر enbled لا هو كان هارد واحد سي فقط انا قسمت زمان الي اثنين الان اريد ارجاع مساحة d الي سي
  13. السلام عليكم لماذا لا استطيع حذف قرص d لكي اريد اضافة مساحة لقرص سي
  14. السلام عليكم لدي كود تالي لماذا عندما اضغط علي تحميل لا يتم تحميل ملف <table class="table table-striped table-responsive table-bordered printtable"> <tr> <th style="text-align: right;"> رقم القيد</th> <th style="text-align: right;">اسم الطالب</th> <th style="text-align: right;">عنوان المشروع </th> <th style="text-align: right;">اسم القسم </th> <th style="text-align: right;">اسم المشرف </th> <th style="text-align: right;"> ملف المشروع </th> <!-- عمود id_p في جدول ملف مشروع مفتاح اجنبي--> </tr> <?php require('config.php'); $db = new db; $result = $db->getAllstudent(); while ($row = mysqli_fetch_array($result)) { echo "<tr> <td>" . $row['num_std'] . "</td> <td>" . $row['name_std'] . "</td> <td>" . $row['name_project'] . "</td> <td>" . $row['name_dept'] . "</td> <td>" . $row['name_teah'] . "</td> <td><a href=\"download_script.php?file=..uploads/" . $row['path_file'] . "\">تحميل الملف</a></td> </tr>"; } $db->closeCon(); ?> </table>
  15. السلام عليكم في لارافيل اريد الغاء خيار تسجيل لكن لم يلغي هذا كود Auth::routes(); Auth::routes(['register' => false]); <?php use Illuminate\Support\Facades\Auth; use Illuminate\Support\Facades\Route; use App\Http\Controllers\StudentController; Route::get('/', function () { return view('welcome'); }); Route::get('/student', [StudentController::class, 'index'])->name('student'); Route::get('/student.edit', [StudentController::class, 'edit'])->name('student.edit'); Route::get('/create', [StudentController::class, 'create'])->name('create'); Route::get('/student.destroy', [StudentController::class, 'destroy'])->name('student.destroy'); Route::post('/store', [StudentController::class, 'store'])->name('storestudent'); Auth::routes(); Route::get('/home', [App\Http\Controllers\HomeController::class, 'index'])->name('home'); Auth::routes(); Auth::routes(['register' => false]); Route::get('/home', [App\Http\Controllers\HomeController::class, 'index'])->name('home');
  16. بعدا اعطائه اسم للرابط
  17. الان يعمل بارك الله فيك اخي محمد عاطف ممكن تعمل لي كود ادخال بيانات لديك ملف مشروع مرفق في اعلي
  18. لزالت نفس مشكلة اخي مصطفي
  19. قمت بتعريفه لزالت نفس مشكلة <?php use Illuminate\Support\Facades\Route; use App\Http\Controllers\StudentController; Route::get('/', function () { return view('welcome'); }); Route::get('/student', [StudentController::class, 'index']); Route::get('/student.edit', [StudentController::class, 'edit'])->name('student-edit'); Route::get('/student.create', [StudentController::class, 'create'])->name('student-create');
  20. لازالت نفس مشكلة gpms.rar
  21. هدا ملف ما الخطا به اخي محمد عاطف @extends('layouts.master'); @section('title') الطلبة @endsection @section('title_page1') الطلبة @endsection @section('title_page2') قائمة الطلبة @endsection @section('content') <div class="mb-5"> <a href="{{route('student-create')}}" class="btn btn-sm btn-outline-primary">إضافة طالب</a> </div> <table class="table"> <thead> <tr> <th>اسم الطالب</th> <th>رقم القيد</th> <th>عنوان الطالب</th> <th>بريد الطالب</th> <th>رقم الهاتف</th> <th colspan="2"></th> </tr> </thead> <tbody> @if($students->count()) @foreach ($students as $student) <tr> <td>{{$student->name_std}} </td> <td>{{$student->num_std}}</td> <td>{{$student->adress_std}}</td> <td>{{$student->email_std}}</td> <td>{{$student->phone}}</td> <td> <a href="{{route('student.edit')}} " class="btn btn-sm btn-outline-success">تعديل</a> </td> <td> <form action="{{route('student.destroy')}}" method="POST"> @csrf <input type="hidden" name="_method" value="delete"> @method('delete') <button type="submit" class="btn btn-sm btn-outline-danger">حذف</button> </form> </td> </tr> @endforeach @else <tr> <td colspan="5">لايوج بيانات لاعرضها</td> </tr> @endif </tbody> </table> @endsection @section('scripts') @endsection
  22. ملف web.php به تالي <?php use Illuminate\Support\Facades\Route; use App\Http\Controllers\StudentController; Route::get('/', function () { return view('welcome'); }); Route::get('/student', [StudentController::class, 'index']); Route::get('/student.edit', [StudentController::class, 'edit']); Route::get('/student.create', [StudentController::class, 'create']); ملف create.blade.php @extends('layouts.master'); @section('title') الطلبة @endsection @section('title_page1') قائمة الطلبة @endsection @section('title_page2') اضافة طالب @endsection @section('content') <form action="{{route('student.store')}}" method="POST"> @csrf <div class="form-group"> <label for="">اسم الطالب</label> <input type="text" name="name_std" class="form-control"> </div> <div class="form-group"> <label for="">رقم القيد</label> <input type="text" name="num_std" class="form-control"> </div> <div class="form-group"> <label for="">البريد الالكتروني</label> <input type="text" name="email_std" class="form-control"> </div> <div class="form-group"> <label for="">تاريخ ميلاد الطالب</label> <input type="text" name="date_student" class="form-control"class=""> </div> <div class="form-group"> <label for="">عنوان الطالب</label> <input type="text" name="adress_std" class="form-control"> </div> <div class="form-group"> <label for="">هاتف الطالب</label> <input type="text" name="phone" class="form-control"class=""> </div> <div class="form-group"> <button type="submit" class="btn btn-primary">حفظ</button> </div> </form> @endsection @section('scripts') @endsection
  23. السلام عليكم ممكن حل مشكلة
  24. لماذا لا تظهر الصفحة اخي محمد عاطف
×
×
  • أضف...